Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632705 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/166 - Coin Game

style.css cody/swapnilsparsh/30DaysOfJavaScript/166 - Coin Game/style.css
102 Views
0 Comments
grid {
display: grid;
grid: repeat(8, 1fr)/repeat(10, 1fr);
margin: 10px auto 0;
position: relative;
cursor: pointer;
}

index.html cody/swapnilsparsh/30DaysOfJavaScript/166 - Coin Game/index.html
290 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Slide Collect Coin </title>
<link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/166 - Coin Game/script.js
79 Views
0 Comments

// Extend the base functionality of JavaScript
Array.prototype.last = function () {
return this[this.length - 1];
};

// A sinus function that acceps degrees instead of radians
Math.sinus = function (degree) {